home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / src / cblas / drot.c < prev    next >
Encoding:
C/C++ Source or Header  |  2002-04-18  |  266 b   |  13 lines

  1. #include <gsl/gsl_math.h>
  2. #include <gsl/gsl_cblas.h>
  3. #include "cblas.h"
  4.  
  5. void
  6. cblas_drot (const int N, double *X, const int incX, double *Y, const int incY,
  7.         const double c, const double s)
  8. {
  9. #define BASE double
  10. #include "source_rot.h"
  11. #undef BASE
  12. }
  13.